home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / core / EventPriority.as < prev    next >
Text File  |  2009-02-12  |  555b  |  27 lines

  1. package mx.core
  2. {
  3.    use namespace mx_internal;
  4.    
  5.    public final class EventPriority
  6.    {
  7.       
  8.       public static const DEFAULT:int = 0;
  9.       
  10.       public static const BINDING:int = 100;
  11.       
  12.       public static const DEFAULT_HANDLER:int = -50;
  13.       
  14.       public static const EFFECT:int = -100;
  15.       
  16.       public static const CURSOR_MANAGEMENT:int = 200;
  17.       
  18.       mx_internal static const VERSION:String = "3.0.0.0";
  19.        
  20.       
  21.       public function EventPriority()
  22.       {
  23.          super();
  24.       }
  25.    }
  26. }
  27.